home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / programm / MM2_DEV / S / MOS / DEBUG.D < prev    next >
Encoding:
Modula Definition  |  1989-09-20  |  383 b   |  10 lines

  1. DEFINITION MODULE Debug;
  2.  
  3. VAR Active   : BOOLEAN;  (* TRUE: Ausgabe der Zeilen / Daten *)
  4.     Step     : LONGCARD; (* >0L: DEC (Step), =0L: Active:= TRUE *)
  5.     Hex      : BOOLEAN;  (* TRUE: Ausgabe der Werte hexadezimal *)
  6.     LineAddr : BOOLEAN;  (* TRUE: Ausgabe der abs./rel. Adr. der Zeile *)
  7.     Continuous: BOOLEAN; (* FALSE: Stop nach jeder Zeile *)
  8.     
  9. END Debug.
  10.